package axis

Import Path
	github.com/K-Phoen/grabana/axis (on go.dev)

Dependency Relation
	imports one package, and imported by one package

Involved Source Files axis.go
Package-Level Type Names (total 2)
/* sort by: | */
Axis represents a visualization axis. Builder *sdk.Axis func New(options ...Option) *Axis
Option represents an option that can be used to configure an axis. func Hide() Option func Label(label string) Option func LogBase(base int) Option func Max(max float64) Option func Min(min float64) Option func Unit(unit string) Option func New(options ...Option) *Axis func github.com/K-Phoen/grabana/graph.LeftYAxis(opts ...Option) graph.Option func github.com/K-Phoen/grabana/graph.RightYAxis(opts ...Option) graph.Option func github.com/K-Phoen/grabana/graph.XAxis(opts ...Option) graph.Option
Package-Level Functions (total 7)
Hide makes the axis hidden.
Label sets the label on this axis.
LogBase allows to change the logarithmic scale used to display the values.
Max sets the maximum value expected on this axis.
Min sets the minimum value expected on this axis.
New creates a new Axis configuration.
Unit sets the unit of the data displayed on this axis.